home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 15: Shareware / PC Actual CDT 15.iso / files / Windows_95_98 / Programacion / ActiveX / NCTWavPlayer.exe / Main / TestSheet.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-06  |  1.6 KB  |  69 lines

  1. #if !defined(AFX_TESTSHEET_H__37DFB303_CA09_11D3_996E_444553540000__INCLUDED_)
  2. #define AFX_TESTSHEET_H__37DFB303_CA09_11D3_996E_444553540000__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // TestSheet.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CTestSheet
  12.  
  13. #include "TestDevice.h"
  14. #include "TestScale.h"
  15. #include "TestColor.h"
  16. #include "TestGeneral.h"
  17. #include "nctwavplayer.h"
  18.  
  19. class CTestSheet : public CPropertySheet
  20. {
  21.     DECLARE_DYNAMIC(CTestSheet)
  22.  
  23. // Construction
  24. public:
  25.     CTestSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  26.     CTestSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  27.  
  28. protected:
  29.     void AddControlPages(void);
  30.  
  31. // Attributes
  32. public:
  33.     CTestGeneral    m_general;
  34.     CTestDevice        m_device;
  35.     CTestScale        m_scale;
  36.     CTestColor        m_color;
  37.  
  38. // Operations
  39. public:
  40.  
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CTestSheet)
  44.     public:
  45.     virtual BOOL OnInitDialog();
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49. public:
  50.     CNCTWavPlayer*    m_player;
  51.     virtual ~CTestSheet();
  52.  
  53.     // Generated message map functions
  54. protected:
  55.     HICON m_hIcon;
  56.  
  57.     //{{AFX_MSG(CTestSheet)
  58.         // NOTE - the ClassWizard will add and remove member functions here.
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67.  
  68. #endif // !defined(AFX_TESTSHEET_H__37DFB303_CA09_11D3_996E_444553540000__INCLUDED_)
  69.